Create Dataset

Create a new dataset

Request
Request Body schema: application/json

Dataset creation options Metadata for creation is optional

name
required
string

Dataset name

projects
required
Array of strings

list of project ids related to the created dataset

driver
string

Driver type of an existing driver or new driver configuration

Enum: "mongo" "gcs" "fs" "s3" "azureblob"
driverId
string

Driver id of an existing external driver

accessLevel
string

Share options, only user or all project members with the right role (default is project)

Enum: "private" "project"
createDefaultRecipe
boolean
object (ExpirationOptions)
indexDriver
string (IndexDriver)
Enum: "v1" "v2"
object (DatasetMetadata)
property name*
additional property
any
Responses
200

Ok

400

Missing argument

post/datasets
Request samples
application/json
{
  • "name": "string",
  • "projects": [
    ],
  • "driver": "mongo",
  • "driverId": "string",
  • "accessLevel": "private",
  • "createDefaultRecipe": true,
  • "expirationOptions": {
    },
  • "indexDriver": "v1",
  • "metadata": {
    }
}
Response samples
application/json
{
  • "name": "New Set Name",
  • "projects": [
    ],
  • "driver": "mongo",
  • "accessLevel": "project",
  • "metadata": {
    }
}